
@keyframes slideshow__fade {
  0% {
    opacity: 0;
    z-index: 2;
  }
  6.6666666667% {
    opacity: 1;
  }
  26.6666666667% {
    opacity: 1;
  }
  27.6666666667% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
  }
}
	.diaporama {
  position: relative;
}
	.diaporama img:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  animation-duration: 112s; /*On retrouve nos 30 secondes ici */
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: slideshow__fade;
  animation-timing-function: ease-in;
  transition: opacity 2s ease-in;
}
.diaporama img:nth-child(1) {
  animation-delay: 0s;
}
.diaporama img:nth-child(2) {
  animation-delay: 7s;
}
.diaporama img:nth-child(3) {
  animation-delay: 14s;
}
.diaporama img:nth-child(4) {
  animation-delay: 21s;
}
.diaporama img:nth-child(5) {
  animation-delay: 28s;
}
.diaporama img:nth-child(6) {
  animation-delay: 35s;
}
.diaporama img:nth-child(7) {
  animation-delay: 42s;
}
.diaporama img:nth-child(8) {
  animation-delay: 49s;
}
.diaporama img:nth-child(9) {
  animation-delay: 56s;
}
.diaporama img:nth-child(10) {
  animation-delay: 63s;
}
.diaporama img:nth-child(11) {
  animation-delay: 70s;
}
.diaporama img:nth-child(12) {
  animation-delay: 77s;
}
.diaporama img:nth-child(13) {
  animation-delay: 84s;
}
.diaporama img:nth-child(14) {
  animation-delay: 91s;
}
.diaporama img:nth-child(15) {
  animation-delay: 98s;
}
.diaporama img:nth-child(16) {
  animation-delay: 115s;
}
